SettingView   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 4
rs 10
c 0
b 0
f 0
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A render 0 2 1
1
import React from 'react';
2
import SettingTabContainer from './tab/SettingTabContainer';
3
4
export default class SettingView extends React.Component {
5
  render() {
6
    return (<SettingTabContainer id="settingTabs" />);
7
  }
8
}
9